All Questions
1 question
0votes
1answer
853views
Abstract base classes and mix-ins in python
In the python docs, I read this about the ABC (abstract base class) meta class: Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. I don't come ...